home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
1,000+ Great Games
/
1_1000 Games.iso
/
DOSGAMES
/
BOGGLE.ZIP
/
SOURCE.ZIP
/
DICE.HPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-07-30
|
237 b
|
17 lines
#ifndef BOGDICE_H
#define BOGDICE_H
#include "common.hpp"
class Dice;
class Dice {
char faces[7];
public:
Dice(const char *);
char *Roll(); //return a face based on random # generator
};
#endif